home *** CD-ROM | disk | FTP | other *** search
/ PC Advisor 2011 May / PC Advisor 190 E.iso / pc / ESSENTIALS / VLC Media Player 1.1 / vlc-1.1.5-win32.exe / lua / meta / reader / filename.lua next >
Encoding:
Text File  |  2010-11-13  |  1.6 KB  |  53 lines

  1. --[[
  2.  Gets an artwork for french TV channels
  3.  
  4.  $Id$
  5.  Copyright ┬⌐ 2007 the VideoLAN team
  6.  
  7.  This program is free software; you can redistribute it and/or modify
  8.  it under the terms of the GNU General Public License as published by
  9.  the Free Software Foundation; either version 2 of the License, or
  10.  (at your option) any later version.
  11.  
  12.  This program is distributed in the hope that it will be useful,
  13.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  GNU General Public License for more details.
  16.  
  17.  You should have received a copy of the GNU General Public License
  18.  along with this program; if not, write to the Free Software
  19.  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  20. --]]
  21.  
  22. function trim (s)
  23.   return (string.gsub(s, "^%s*(.-)%s*$", "%1"))
  24. end
  25.  
  26. function read_meta()
  27.     local metas = vlc.item:metas()
  28.  
  29.     -- Don't do anything if there is already a title
  30.     if metas["title"] then
  31.         return
  32.     end
  33.  
  34.     local name = metas["filename"];
  35.     if not name then
  36.         return
  37.     end
  38.  
  39.     -- Find "Show.Name.S01E12-blah.avi"
  40.     local title, seasonNumber
  41.     _, _, showName, seasonNumber, episodeNumber = string.find(name, "(.+)S(%d%d)E(%d%d).*")
  42.     if not showName then
  43.         return
  44.     end
  45.  
  46.     -- Remove . in showName
  47.     showName = trim(string.gsub(showName, "%.", " "))
  48.     vlc.item:set_meta("title", showName.." S"..seasonNumber.."E"..episodeNumber)
  49.     vlc.item:set_meta("showName", showName)
  50.     vlc.item:set_meta("episodeNumber", episodeNumber)
  51.     vlc.item:set_meta("seasonNumber", seasonNumber)
  52. end
  53.